update
[u360gts.git] / docs / development / Building in Fedora.md
blob08f498e1837254543aacc0441ce9e76ec91267fa
1 # Building in Fedora
3 Assuming you already have wget and git available, you should be able to build u360gts on a fresh install of Fedora with the following commands (tested on F18, F20 and Ubuntu 14.04):
5 ```
6 wget http://distribute.atmel.no/tools/opensource/Atmel-ARM-GNU-Toolchain/4.8.4/arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
8 tar xf arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
9 export PATH=$PATH:$PWD/arm-none-eabi/bin
11 git clone https://github.com/u360gts/u360gts.git
12 cd u360gts
13 TARGET=NAZE make
14 ```
16 This will create u360gts_NAZE.hex in the obj folder.